home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / dt / fracxtr5.zip / BAT / TEMP.C < prev    next >
C/C++ Source or Header  |  1992-06-19  |  168b  |  10 lines

  1. #include <stdio.h>
  2.  
  3. void main()
  4. {
  5.    int n;
  6.    float a=-2.19, b=0.95;
  7.  
  8.    printf("\n\n");
  9.    for (n=0; n<=5; ++n)  printf("%G\n", ((5-n)/5.0)*a + (n/5.0)*b);
  10. }